home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / DYNAB.PAK / COURSSET.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  58 lines

  1. // coursset.cpp : implementation file
  2. //
  3. //
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1995 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14. #include "stdafx.h"
  15. #include "enroll.h"
  16. #include "coursset.h"
  17.  
  18. #ifdef _DEBUG
  19. #undef THIS_FILE
  20. static char BASED_CODE THIS_FILE[] = __FILE__;
  21. #endif
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CCourseSet
  25.  
  26. IMPLEMENT_DYNAMIC(CCourseSet, CRecordset)
  27.  
  28. CCourseSet::CCourseSet(CDatabase* pdb)
  29.     : CRecordset(pdb)
  30. {
  31.     //{{AFX_FIELD_INIT(CCourseSet)
  32.     m_CourseID = "";
  33.     m_CourseTitle = "";
  34.     m_Hours = 0;
  35.     m_nFields = 3;
  36.     //}}AFX_FIELD_INIT
  37. }
  38.  
  39. CString CCourseSet::GetDefaultConnect()
  40. {
  41.     return "ODBC;DSN=Student Registration;";
  42. }
  43.  
  44. CString CCourseSet::GetDefaultSQL()
  45. {
  46.     return "COURSE";
  47. }
  48.  
  49. void CCourseSet::DoFieldExchange(CFieldExchange* pFX)
  50. {
  51.     //{{AFX_FIELD_MAP(CCourseSet)
  52.     pFX->SetFieldType(CFieldExchange::outputColumn);
  53.     RFX_Text(pFX, "CourseID", m_CourseID);
  54.     RFX_Text(pFX, "CourseTitle", m_CourseTitle);
  55.     RFX_Int(pFX, "Hours", m_Hours);
  56.     //}}AFX_FIELD_MAP
  57. }
  58.